Summary 2

Structure And Introducing CSS

Topic 1: Body Head and Title

When creating a page for your website using code, there are three essential elements you need to add to lay down the necessary information, such as text to your site. The first thing you should put down is the head. This is where the information about the page is held. This is also where you will add a title if you wish to do so. A title will normally be seen on the top of the browser or on the tab of the page. You will then add the body next which is shown in the main browser window.

Topic 2: Attributes

Attributes are helpful as they expand on information about what and element is and what it does. An attribute will appear on the opening tag of an element and is created from a name and a value which are then separated by a = symbol. There are a few key factors to remember when using an attribute. The attribute must be written in lowercase. They should be placed in double quotes. Most attributes can only be used on specific elements. However, there can be times where an attribute can be used more than once

Topic 3: Understanding CSS

CSS coding is what gives your text and site character by adjusting things such as color, size, and typeface. It also helps to create borders around text if you desire and fixing the width and height of text to place it near of far from something. With CSS whatever you want your site to look like, it can be created with just a few simple types of text and by setting up certain rules that the code will translate into colorful backgrounds and appealing layouts for your site.